home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / dev / misc / ahidev.lha / AHI / Developer / examples / Low-level / Req-test / smakefile < prev   
Encoding:
Makefile  |  1997-07-02  |  306 b   |  24 lines

  1.  
  2. TARGET = Req-test
  3. OBJS= $(TARGET).o
  4.  
  5. $(TARGET): $(OBJS)
  6.    sc link to $(TARGET) with <<
  7. $(OBJS)
  8. <
  9.  
  10. $(TARGET).o: $(TARGET).c
  11.  
  12. dist:    
  13.     smake allclean
  14.     smake $(TARGET)
  15.     slink from $(TARGET) ND TO $(TARGET)
  16.     smake clean
  17.  
  18. clean:
  19.     --delete \#?.(map|o|lnk|info) QUIET
  20.  
  21. allclean:
  22.     smake clean
  23.     --delete $(TARGET)
  24.